home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / fflush.c < prev    next >
C/C++ Source or Header  |  1988-07-25  |  1KB  |  56 lines

  1. /* 
  2.  * fflush.c --
  3.  *
  4.  *    Source code for the "fflush" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: fflush.c,v 1.2 88/07/25 08:54:16 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * fflush --
  26.  *
  27.  *    Forces any buffered output data on stream to be output.
  28.  *
  29.  * Results:
  30.  *    EOF is returned if the stream isn't writable of if an error
  31.  *    occurred while writing it.
  32.  *
  33.  * Side effects:
  34.  *    If there is buffered data, it is written out.
  35.  *
  36.  *----------------------------------------------------------------------
  37.  */
  38.  
  39. int
  40. fflush(stream)
  41.     register FILE *stream;        /* Stream to be flushed. */
  42. {
  43.     if (!(stream->flags & STDIO_WRITE) || (stream->writeCount == 0)
  44.         || (stream->lastAccess == (stream->buffer-1))) {
  45.     return 0;
  46.     }
  47.     if (stream->status != 0) {
  48.     return EOF;
  49.     }
  50.     (*stream->writeProc)(stream, 1);
  51.     if (stream->status != 0) {
  52.     return EOF;
  53.     }
  54.     return 0;
  55. }
  56.